/* ============================================================
   SATÉLITE DE GUERRA - BASE (CORRIGIDO)
   ============================================================ */
#tela-trilha,
.mapa-guerra-final {
    background-image: 
        linear-gradient(#1a2a3a 1px, transparent 1px),
        linear-gradient(90deg, #1a2a3a 1px, transparent 1px);
    background-size: 25px 25px;
    background-position: center center;
    background-color: #04070a;
    min-height: 100vh;     /* ANTES: min-height: 100% → AGORA: 100vh para ocupar tela inteira */
    width: 100%;
    padding: 20px;
    box-sizing: border-box;  /* Garante que padding não cause overflow */
}

.botoes-frente {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 15px 0;
    flex-wrap: wrap;
}
.btn-frente {
    background: #0a0f18;
    border: 2px solid #2a4a6a;
    color: #7a9aba;
    padding: 10px 24px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    letter-spacing: 1px;
}
.btn-frente.ativo {
    background: #00ff6620;
    border-color: #00ff66;
    color: #00ff66;
    box-shadow: 0 0 15px #00ff6640;
}
.btn-frente:hover {
    background: #00ff6620;
    border-color: #00ff66;
    color: #00ff66;
    transform: translateY(-2px);
}

.botoes-frente {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 15px 0;
    flex-wrap: wrap;
}
.btn-frente {
    background: #0a0f18;
    border: 2px solid #2a4a6a;
    color: #7a9aba;
    padding: 10px 24px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    letter-spacing: 1px;
}
.btn-frente.ativo {
    background: #00ff6620;
    border-color: #00ff66;
    color: #00ff66;
    box-shadow: 0 0 15px #00ff6640;
}
.btn-frente:hover {
    background: #00ff6620;
    border-color: #00ff66;
    color: #00ff66;
    transform: translateY(-2px);
}